home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_09_08 / 9n08083a < prev    next >
Text File  |  1991-07-06  |  319b  |  18 lines

  1.  
  2. statement:
  3.         statement
  4.         FAIL( expression );
  5.         RETRY;
  6.         exception-handling-statement
  7.  
  8. exception-handling-statement:
  9.         BEGIN_TRY try-clause END_TRY;
  10.         BEGIN_TRY try-clause FAIL_TRY fail-clause END_TRY;
  11.  
  12. try-clause:
  13.         statement
  14.  
  15. fail-clause:
  16.         statement
  17.  
  18.